home *** CD-ROM | disk | FTP | other *** search
- p = _parent;
- icon = p.icon_mc;
- colButton = _parent._parent.colButton;
- colText = _parent._parent.colText;
- new Color(light_mc).setRGB(_parent._parent.colLight);
- new Color(icon).setRGB(colText);
- light_mc._visible = false;
- this.onPress = function()
- {
- new Color(icon).setRGB(colText);
- icon._xscale = icon._yscale = 95;
- icon.sign_mc._alpha = 0;
- light_mc._alpha = 100;
- };
- this.onRollOver = function()
- {
- new Color(icon).setRGB(colButton);
- icon._xscale = icon._yscale = 100;
- icon.sign_mc._alpha = 50;
- light_mc._visible = true;
- light_mc._alpha = 70;
- };
- this.onRelease = function()
- {
- new Color(icon).setRGB(colButton);
- icon._xscale = icon._yscale = 100;
- icon.sign_mc._alpha = 50;
- light_mc._visible = true;
- light_mc._alpha = 70;
- p.clicked();
- };
- this.onReleaseOutside = this.onRollOut = this.onDragOut = function()
- {
- new Color(icon).setRGB(colText);
- icon._xscale = icon._yscale = 100;
- icon.sign_mc._alpha = 100;
- light_mc._visible = false;
- };
-